|
<HEAD> <TITLE></TITLE> </HEAD> <BODY> </BODY> </HTML>
|
![]() The text above I enclosed in the <CENTER> and </CENTER> tags. You can also make your text bold by enclosing it in the <B></B> tags. Put your text in italics by using the <I></I> tags. Want to underline your text? Use the <U></U> tags. Go ahead and try it! Open Notepad and bring up your Start Page. Enclose "Hello World" in the tags. Go ahead. It'll look like this; <CENTER><B><I><U>Hello World</U></I></B></CENTER>. What a mess! It looks like this: You don't have to use them all in one go. Use 'em one at a time, two at a time, however many you want. The idea is to make the text do what you want it to do. The tags that have a beginning <> and an ending </> are called "container" tags. They hold things. You'll use these tags over and over. After a while, knowing if the tags are "containers" will become automatic. This part is hard to explain. The order of the tags. If you'll notice how that was written above, we started with <CENTER> and ended with </CENTER>, the next tag was <B> and the next to the last was </B> and so on. I don't know if your page being loaded would be affected by these being in a different order or not. What I do know, is that when your text isn't doing what it should and you go and look at your HTML in your editor, it's easier to catch what you left out.
|